home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / frontpage_shtml.nasl < prev    next >
Text File  |  2005-01-14  |  2KB  |  76 lines

  1. #
  2. # This script was written by Renaud Deraison <deraison@cvs.nessus.org>
  3. #
  4. # See the Nessus Scripts License for details
  5. #
  6.  
  7. if(description)
  8. {
  9.  script_id(10405);
  10.  script_bugtraq_id(1174);
  11.  script_version ("$Revision: 1.17 $");
  12.  script_cve_id("CAN-2000-0413");
  13.  name["english"] = "shtml.exe reveals full path";
  14.  script_name(english:name["english"]);
  15.  
  16.  desc["english"] = "
  17. The shtml.exe CGI which comes with FrontPage 2000
  18. reveals the full path to the remote web root when
  19. it is given a non-existent file as an argument.
  20.  
  21. This is useful to an attacker who can gain more
  22. knowledge against the remote host.
  23.  
  24. Solution : Install Windows 2000 SP3
  25. Risk factor : Low";
  26.  
  27.  script_description(english:desc["english"]);
  28.  
  29.  summary["english"] = "Retrieve the real path using shtml.exe";
  30.  
  31.  script_summary(english:summary["english"]);
  32.  
  33.  script_category(ACT_GATHER_INFO);
  34.  
  35.  script_copyright(english:"This script is Copyright (C) 2000 Renaud Deraison");
  36.  family["english"] = "CGI abuses";
  37.  family["francais"] = "Abus de CGI";
  38.  script_family(english:family["english"], francais:family["francais"]);
  39.  script_dependencie("find_service.nes", "http_version.nasl", "www_fingerprinting_hmap.nasl");
  40.  script_require_ports("Services/www", 80);
  41.  exit(0);
  42. }
  43.  
  44. #
  45. # The script code starts here
  46. #
  47. include("http_func.inc");
  48. port = get_http_port(default:80);
  49.  
  50. sig = get_kb_item("www/hmap/" + port + "/description");
  51. if ( sig && "IIS" >!< sig ) exit(0);
  52.  
  53. if(get_port_state(port))
  54. {
  55.   req = http_get(item:"/_vti_bin/shtml.exe/nessus_test.exe",
  56.            port:port);
  57.          
  58.   soc = http_open_socket(port);
  59.   if(soc)
  60.   {
  61.    send(socket:soc, data:req);
  62.    result = http_recv(socket:soc);
  63.    http_close_socket(soc);
  64.    if("no such file or folder" >< result)
  65.    {
  66.     result = tolower(result);
  67.     str = strstr(result, "not open");
  68.     if(egrep(string:str, pattern:"[a-z]:\\.*", icase:TRUE))
  69.     {
  70.      security_warning(port);
  71.     }
  72.    }
  73.   }
  74. }
  75.  
  76.